home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
comp
/
conflict.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
384 b
|
24 lines
/*
C O N F L I C T . C
*/
#include "iccomp.h"
int conflict(lval, rval, opcode)
ESTRUC_
*lval,
*rval;
OPCODE_
opcode;
{
register int
ret;
if ( (ret = !(lval->type & rval->type & optype[opcode])) )
{
semantic(type_conflict, opstring[opcode]);
clearbin(lval, rval);
}
return (ret);
}